[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
Function iswildcarded - checks a string for DOS wildcards
Syntax boolean iswildcarded(char *str);
Prototype in stringhk.h
Remarks checks if the DOS wildcard characters *,? are
contained in str.
Return value returns TRUE * or ? is in str, FALSE otherwise.
Example #include <stringhk.h>
main()
{
char filename[] = "TCHK*.LIB";
printf("%s is ",filename);
if (!iswildcarded(filename))
printf("NOT ");
printf("wildcarded");
}
Program output TCHK*.LIB is wildcarded
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson